home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / games / nhak_src.zip / WSEG.H < prev    next >
C/C++ Source or Header  |  1993-03-16  |  540b  |  25 lines

  1. /*    SCCS Id: @(#)wseg.h    3.0    88/10/15
  2. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4. /* wseg.h - version 1.0.2 */
  5.  
  6. #ifndef WSEG_H
  7. #define WSEG_H
  8.  
  9. # ifdef WORM
  10. /* worm structure */
  11. struct wseg {
  12.     struct wseg *nseg;
  13.     xchar wx,wy;
  14.     Bitfield(wdispl,1);
  15. };
  16.  
  17. #define newseg()    (struct wseg *) alloc(sizeof(struct wseg))
  18.  
  19. extern struct wseg *wsegs[32], *wheads[32], *m_atseg;
  20. extern long wgrowtime[32];
  21.  
  22. # endif
  23.  
  24. #endif /* WSEG_H /**/
  25.